home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / D-G / FORTRAN Goodies / FORTRAN Speaks / BuildSpeakF next >
Encoding:
Text File  |  1990-08-01  |  462 b   |  22 lines  |  [TEXT/MPS ]

  1. #    Script to build MacinTalk FORTRAN demo
  2.  
  3. #    Compile the program
  4. FORTRAN 'Speak.f'
  5.  
  6. #    Link it
  7. Link -ad 4 -w -t APPL -c '????' ∂
  8. #    Main program ∂
  9.     'Speak.f.o' ∂
  10. #    Link in the speech library ∂
  11.     {Libraries}SpeechIntf.o ∂
  12. #    Now link all the usual libraries ∂
  13.     {Libraries}Runtime.o ∂
  14.     {Libraries}Interface.o ∂
  15.     {FLibraries}FORTRANlib.o ∂
  16.     {FLibraries}IntrinsicLib.o ∂
  17.     -o SpeakF
  18.  
  19. #    Set up the name of the application on the worksheet
  20. #    for execution
  21. Echo -n "SpeakF "
  22.